3db2d04198aaa70f2b4d85d7c2435c1b85d88503,src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowReleaseFinishMojo.java,GitFlowReleaseFinishMojo,execute,#,50

Before Change


            checkUncommittedChanges();

            // git for-each-ref --format='%(refname:short)' refs/heads/release/*
            final String releaseBranches = executeGitCommandReturn(
                    "for-each-ref", "--format=\"%(refname:short)\"",
                    "refs/heads/" + gitFlowConfig.getReleaseBranchPrefix()
                            + "*");

            String releaseVersion = null;

After Change


            checkUncommittedChanges();

            // git for-each-ref --format='%(refname:short)' refs/heads/release/*
            final String releaseBranches = gitFindBranches(gitFlowConfig
                    .getReleaseBranchPrefix());

            String releaseVersion = null;